-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C++11-ify virtualisation in Nanostack classes #12488
Conversation
Use `override` and `final` where appropriate, and eliminate unnecessary `virtual`. Some other C++11 simplifications. Eliminate two unused header files (with no corresponding source files). Reduces code size.
@kjbracey-arm, thank you for your changes. |
#include "MeshInterfaceNanostack.h" | ||
#include "NanostackEthernetPhy.h" | ||
|
||
class NanostackEMACInterface : public Nanostack::Interface { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By this and the other removed class/headers do we make it a breaking change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't believe there are any breaking changes for "real code" here.
These two header files were a stray remnant of a design that wasn't followed through, and committed by mistake - the corresponding cpp files were missing, so the classes weren't constructible.
It would technically be a breaking change if someone had been including the files for no reason.
CI started |
Test run: SUCCESSSummary: 9 of 9 test jobs passed |
Summary of changes
Use
override
andfinal
where appropriate, and eliminate unnecessaryvirtual
.Some other C++11 simplifications.
Eliminate two unused header files (with no corresponding source files).
Reduces code size.
Impact of changes
None.
Migration actions required
None.
Documentation
None.
Pull request type
Test results
Reviewers
@mikaleppanen